Paragraph TAG IN HTML
In HTML, the <p> tag is used to define a paragraph. It's a structural element that indicates a block of text or content that forms a distinct unit within a document. When you enclose text within <p> tags, web browsers typically render it with some default margin and spacing, separating it from surrounding content.
Basic Syntax of Paragraph tag:
This is a paragraph of text.
Output :
This is a paragraph of text.
Example-1
PBA INSTITUTE is an advanced coaching institute.
Output :
PBA INSTITUTE is an advanced coaching institute.
Example-2
This is a paragraph.
This is also paragraph.
Output :
This is a paragraph.
This is also paragraph.
Example-3
This is a paragraph.
This is also paragraph.
Output :
This is a paragraph.
This is also paragraph.
Example-4
This is a paragraph.
This is also paragraph.
Output :
This is a paragraph.
This is also paragraph.
In HTML, the <p> tag denotes a paragraph, allowing for structured presentation of textual content. Unlike many other tags, it doesn't necessitate a closing tag (</p>). The absence of a closure is because browsers inherently understand the paragraph's termination upon encountering the next block-level element. This succinctly organizes content, enhancing readability and semantic clarity within web pages.